home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / SNIP0492.ARJ / WEIRD.C < prev    next >
C/C++ Source or Header  |  1990-09-03  |  272b  |  14 lines

  1. #include<stdio.h>
  2.  
  3. char *c[] = { "ENTER", "NEW", "POINT", "FIRST" };
  4. char **cp[] = { c+3, c+2, c+1, c };
  5. char ***cpp = cp;
  6.  
  7. main()
  8. {
  9.     printf("%s", **++cpp);
  10.     printf("%s ", *--*++cpp+3);
  11.     printf("%s", *cpp[-2]+3);
  12.     printf("%s\n", cpp[-1][-1]+1);
  13. }
  14.